home *** CD-ROM | disk | FTP | other *** search
/ Stanley's Sticker Stories / Stanley's Sticker Stories (1997)(Edmark)[Mac-PC].iso / mac / DemoData / Shared.Cxt / 00011_Field_11.txt < prev    next >
Text File  |  1996-09-30  |  570b  |  7 lines

  1. LoopOnSound theChannel, theMarker
  2. This function loops back to a specified frame until the sound is finished.  This is useful for animated menus and interfaces, where you want to keep things moving on the stage eventhough you are waiting for a sound to finish.
  3. Example:  theMarker can be: any negative number, 0, or any frame label ("myLoop").  theChannel can be 1 or 2
  4. loopOnSound(1,-4) -- back four markers
  5. loopOnSound(1,-1)   --previous marker
  6. loopOnSound(1,0)   --current marker
  7. loopOnSound(2,"myLoop") --sound in channel 2 and loop to the marker named "myLoop"